Scene_Title.prototype.createCommandWindow = function() {
this._commandWindow = new Window_TitleCommand();
this._commandWindow.opacity = 0;
this._commandWindow.setHandler('newGame', this.commandNewGame.bind(this));
this._commandWindow.setHandler('continue', this.commandContinue.bind(this));
this._commandWindow.setHandler('options', this.commandOptions.bind(this));
this.addWindow(this._commandWindow);
};
Window_Base.prototype.translucentOpacity = function() {
return 255;
};
Window_Base.prototype.standardBackOpacity = function() {
return 255;
};
Социальные закладки